home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / etc / logrotate.d / cups < prev    next >
Text File  |  2008-10-20  |  248b  |  16 lines

  1. /var/log/cups/*log {
  2.     daily
  3.     missingok
  4.     rotate 7
  5.     sharedscripts
  6.     postrotate
  7.         if [ -e /var/run/cups/cupsd.pid ]; then
  8.             invoke-rc.d --quiet cups force-reload > /dev/null
  9.             sleep 10
  10.         fi
  11.     endscript
  12.     compress
  13.     notifempty
  14.     create 640 root lpadmin
  15. }
  16.